home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / edit / gg_m103.zip / MUPDATE < prev   
Text File  |  1994-05-04  |  2KB  |  51 lines

  1.  
  2. There were an assortment of little fixes but the main new features were...
  3.     
  4. New features:  
  5.  
  6.     A companion feature to [^X E] - the diff -> [^X ^E] resychronize the 
  7.     files, find where they are the same.
  8.  
  9.     set M=-b   Keep one backup...  When you do a save I would first
  10.     write out a temporary file.  If that was succesful I would delete
  11.     the origianal file and rename the tempfile to the right name.  When
  12.     -b is set, instead of deleting the original, I move it to a backup
  13.     name.  ** PREMIUM version only **
  14.  
  15.     set M=-j   Keep a journal file.  The journal is purged on a
  16.     successful save.  If a journal file is detected at startup it is
  17.     preloaded into the undo/redo buffer and @@ are put on the status
  18.     line indicating redo is possible.  ** PREMIUM version only **
  19.  
  20.     set M=-f  Don't fall out the bottom when the last file is killed
  21.     [^X K].  Also query on a [^X K] when the file is Modified.
  22.  
  23.     In M.CFG it is possible to set up default behavior for a particular
  24.     type of file extension.  Turn on CMODE WRAPMODE OVERMODE, set tabs.
  25.     Use the "extension" keyword, see m.tut.
  26.  
  27.     set M=-0  set whether column indexing begins at 0 or 1
  28.  
  29.     added look for the ^G much more in big searches...  aborts a lot
  30.     faster.
  31.  
  32.     set Column Mark [Alt ^spacebar]
  33.     Column Yank [Alt ^Y] --  Now you can do column deletes and yanks...
  34.  
  35.     enhanced the nameCompletion [Alt /] for CMODE files...  if the
  36.     normal searches fail I look for .h files already loaded in the
  37.     editor and do the search on them.
  38.  
  39.     set M=-P  Poll the source files, check that the source files do not 
  40.     change unexpectedly while in an M session...  This is to fix the
  41.     following problem:  You have a source code on the net.  You edit it 
  42.     directly on one PC, save it without exitting M, go to another 
  43.     machine, edit the file, save it, return to the original PC and the 
  44.     original M session... and it doesn't reflect the new version...  
  45.     Now I track what happens to the source...  ** PREMIUM version only **
  46.     
  47.     Small bug fix, in CMode M ignores character constants when trying to 
  48.     match parenthesis and auto-indent...  This fixes a bug for example of
  49.     the type: 
  50.         if( x == '{' ) ...
  51.     M use to say bad nesting...